home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue57 / DragDrop / DragObjectsU.dfm / DragObjectsU.txt
Encoding:
Text File  |  2000-02-11  |  2.1 KB  |  117 lines

  1. object Form1: TForm1
  2.   Left = 192
  3.   Top = 126
  4.   Width = 282
  5.   Height = 333
  6.   Caption = 'Drag Objects'
  7.   Color = clBtnFace
  8.   Font.Charset = DEFAULT_CHARSET
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   OldCreateOrder = True
  14.   PixelsPerInch = 96
  15.   TextHeight = 13
  16.   object Label1: TLabel
  17.     Left = 144
  18.     Top = 16
  19.     Width = 32
  20.     Height = 13
  21.     Caption = 'Label1'
  22.     DragMode = dmAutomatic
  23.     OnEndDrag = SharedEndDrag
  24.     OnStartDrag = Label1StartDrag
  25.   end
  26.   object Edit1: TEdit
  27.     Left = 144
  28.     Top = 40
  29.     Width = 121
  30.     Height = 21
  31.     DragMode = dmAutomatic
  32.     TabOrder = 0
  33.     Text = 'Edit1'
  34.     OnEndDrag = SharedEndDrag
  35.     OnStartDrag = Edit1StartDrag
  36.   end
  37.   object Panel1: TPanel
  38.     Left = 8
  39.     Top = 184
  40.     Width = 257
  41.     Height = 113
  42.     Caption = 'Panel1'
  43.     TabOrder = 1
  44.     OnDragDrop = Panel1DragDrop
  45.     OnDragOver = Panel1DragOver
  46.   end
  47.   object Button1: TButton
  48.     Left = 8
  49.     Top = 8
  50.     Width = 121
  51.     Height = 25
  52.     Caption = 'Button1'
  53.     DragMode = dmAutomatic
  54.     TabOrder = 2
  55.     OnEndDrag = SharedEndDrag
  56.     OnStartDrag = Button1StartDrag
  57.   end
  58.   object Memo1: TMemo
  59.     Left = 8
  60.     Top = 72
  61.     Width = 121
  62.     Height = 95
  63.     DragMode = dmAutomatic
  64.     Lines.Strings = (
  65.       'Memo1')
  66.     TabOrder = 3
  67.     OnEndDrag = SharedEndDrag
  68.     OnStartDrag = Memo1StartDrag
  69.   end
  70.   object ListBox1: TListBox
  71.     Left = 144
  72.     Top = 72
  73.     Width = 121
  74.     Height = 95
  75.     DragMode = dmAutomatic
  76.     IntegralHeight = True
  77.     ItemHeight = 13
  78.     Items.Strings = (
  79.       'One'
  80.       'Two'
  81.       'Three'
  82.       'Four'
  83.       'Five'
  84.       'Six'
  85.       'Seven'
  86.       'Eight'
  87.       'Nine'
  88.       'Ten')
  89.     TabOrder = 4
  90.     OnEndDrag = SharedEndDrag
  91.     OnStartDrag = ListBox1StartDrag
  92.   end
  93.   object ComboBox1: TComboBox
  94.     Left = 8
  95.     Top = 40
  96.     Width = 121
  97.     Height = 21
  98.     DragMode = dmAutomatic
  99.     ItemHeight = 13
  100.     TabOrder = 5
  101.     Text = 'One'
  102.     OnEndDrag = SharedEndDrag
  103.     OnStartDrag = ComboBox1StartDrag
  104.     Items.Strings = (
  105.       'One'
  106.       'Two'
  107.       'Three'
  108.       'Four'
  109.       'Five'
  110.       'Six'
  111.       'Seven'
  112.       'Eight'
  113.       'Nine'
  114.       'Ten')
  115.   end
  116. end
  117.